home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 15 / macformat_15.iso / Shareware Internet / Ciencia / MacStim_2.2.1 / Samples ƒ / Timing Technique < prev    next >
Text File  |  1995-12-19  |  2KB  |  44 lines

  1. { This script demonstrates an inconsistency in the timing...
  2. { The aim is to present a sound and a picture simultaneously for 6 sec epochs.
  3. { Instructions: Play this script as it is. Script 1 will play. Notice what happens at 60".
  4. { Then reverse the comments to play script 2. To do this, select the lines beginning with
  5. { "r" for random trial of script 2, eg by triple clicking and dragging, then use the Uncomment
  6. { menu item in the Control menu (shortcut command-]). To prevent playing the Script 1 lines, 
  7. { select them , and then use the Comment menu item (or command-[) to avoid playing them.
  8. { Then run the script again.
  9.  
  10. { Preferences: default & in Resources pane, set play sounds through check box.
  11.  
  12. { Script 1: this one does not run true to the exact 60" cycle. Why?
  13.  
  14. {type    num    pre    max    tot    rep    stpEvt    bg    st    bg-file    st-file
  15. r    2    0.000    0.100    1.000    60.000    m    s    p    Moof    Ball 11
  16. r    1    0.000    0.000    4.900    0.000    n    n    n    n    n
  17.  
  18. r    2    0.000    0.100    1.000    0.000    m    s    p    Blah    Ball 12
  19. r    1    0.000    0.000    4.900    0.000    n    n    n    n    n
  20.  
  21. r    2    0.000    0.100    1.000    0.000    m    s    p    Moof    Ball 13
  22. r    1    0.000    0.000    4.900    0.000    n    n    n    n    n
  23.  
  24. r    2    0.000    0.100    1.000    0.000    m    s    p    Blah    Ball 14
  25. r    1    0.000    0.000    4.900    0.000    n    n    n    n    n
  26.  
  27. { Script 2: this one works. Can you see the difference?
  28. {type    num    pre    max    tot    rep    stpEvt    bg    st    bg-file    st-file
  29. {r    2    0.000    0.100    1.100    60.000    m    s    p    Moof    Ball 11
  30. {r    1    0.000    0.000    4.900    0.000    n    n    n    n    n
  31. {
  32. {r    2    0.000    0.100    1.100    0.000    m    s    p    Blah    Ball 12
  33. {r    1    0.000    0.000    4.900    0.000    n    n    n    n    n
  34. {
  35. {r    2    0.000    0.100    1.100    0.000    m    s    p    Moof    Ball 13
  36. {r    1    0.000    0.000    4.900    0.000    n    n    n    n    n
  37. {
  38. {r    2    0.000    0.100    1.100    0.000    m    s    p    Blah    Ball 14
  39. {r    1    0.000    0.000    4.900    0.000    n    n    n    n    n
  40.  
  41. { Conclusion: the total interval is what has determined script 1's durations. Making the
  42. {    max interval of 0.1 only cuts into the total time. In script 2, pre and max intervals
  43. {    are specifically used making them more than 1 sec and both grouped trials therefore
  44. {    do add to 6 as intended! Phew!